home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / hplip / plugins / powersettings.py < prev    next >
Text File  |  2008-10-13  |  1KB  |  47 lines

  1. # -*- coding: utf-8 -*-
  2. #
  3. # (c) Copyright 2001-2007 Hewlett-Packard Development Company, L.P.
  4. #
  5. # This program is free software; you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation; either version 2 of the License, or
  8. # (at your option) any later version.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  18. #
  19. # Author: Don Welch
  20. #
  21.  
  22. # DJ 4x0 battery power settings
  23.  
  24. # 15min = 015
  25. # 30min = 030
  26. # 45min = 045
  27. # 1hr   = 060
  28. # 2hr   = 120
  29. # 3hr   = 180
  30. # never = 999
  31.  
  32. from base.g import *
  33. from base import device
  34.  
  35. def getPowerSettings(d):
  36.     value = d.getDynamicCounter(256, False)
  37.     log.debug("Current power settings: %s" % value)
  38.     d.closePrint()
  39.     return value[6:9]
  40.  
  41. def setPowerSettings(d, value):
  42.     log.debug("Setting power setting to %s" % value)
  43.     pcl= \
  44. """\x1b%%-12345X@PJL ENTER LANGUAGE=PCL3GUI\n\x1bE\x1b%%Pmech.set_battery_autooff %s;\nudw.quit;\x1b*rC\x1bE\x1b%%-12345X""" % value
  45.     d.printData(pcl, direct=True)
  46.     d.closePrint()
  47.